home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / DATABASE / OBJ1_2.ZIP;1 / OB_CLASS.TXT < prev    next >
Encoding:
Text File  |  1992-12-22  |  4.6 KB  |  142 lines

  1. '
  2. 'This chapters menu
  3. '^^^^^^^^^^^^^^^^^^^^^^
  4. '
  5. '!short: Class hierarchy
  6. '!short: ABrowse   form and browse for multidimensional arrays
  7. '!short: Box       window in screen primitive
  8. '!short: Browse    form and browse key-processing
  9. '!short: Choice    choice of elements of an array, superset to Clipper Choice
  10. '!short: Color     library used colors definition
  11. '!short: Cursor    screen cursor definition
  12. '!short: Dbf       compose of all used dbf files
  13. '!short: DBrowse   database browse and form
  14. '!short: FInfo     view and print of a text file
  15. '!short: Frame     movable screen frame
  16. '!short: Info      view and print of text from char. variable
  17. '!short: Loc       screen location
  18. '!short: MD        help data structure for menu class
  19. '!short: Mask      view enhancement with user defined window content (say,get)
  20. '!short: Menu      main menu of program definition
  21. '!short: Mnu       choice of arrray fields, better control as in the Choice
  22. '!short: OneDbf    one database file services
  23. '!short: Report    report to file generation
  24. '!short: Stack     stack as an object
  25. '!short: Task      task switching window enhancement
  26. '!short: UpABrowse as ABrowse, but supressed other window switching
  27. '!short: UpDBrowse as DBrowse, but supressed other window switching
  28. '!short: UpWindow  as Window, but supressed other window switching
  29. '!short: View      complex database input-output
  30. '!short: Win       simple window with stored background
  31. '!short: Window    full window painting support
  32. '
  33. '
  34. '####################################################################################
  35. !short:Class hierarchy
  36. ^BClass hierarchy:
  37. ~~~~~~~~~~~~~~~~~     Color
  38.  
  39.                       Stack
  40.  
  41.                       Loc ƒƒ¬ƒ> Cursor
  42.                             √ƒ> Frame(Color)         ⁄ƒ> Choice(Cursor)
  43.                             ¿ƒ> Box(Color) ƒ¬ƒ> Win ƒ¡ƒ> Mnu(Cursor)
  44.                                             ¿ƒ> Window(Frame) ƒ¬ƒ> UpWindow
  45.                                                                ¿ƒ> Task(Mnu)
  46.                       ⁄ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒ(Task)ƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒƒŸ
  47.                       ≥
  48.                       √ƒƒ> Info ƒƒ> FInfo
  49.                       ¿ƒƒ> Browse ƒ¬ƒ> ABrowse ƒƒƒ> UpABrowse
  50.                                    ¿ƒ> DBrowse ƒ¬ƒ> UpDBrowse
  51.                                                 √ƒ> View(Dbf) ƒƒ> Mask
  52.                       Dbf(UpWindow)             ¿ƒ> Report(FInfo)
  53.  
  54.                       Menu(View,Dbf,Stack,UpABrowse)
  55. ------------------------------------------------------------------------------
  56. Example: class ^BBox^B has a parent class Loc and uses the class Color.
  57.  
  58. !seealso:
  59.  
  60.  
  61. !short:ABrowse     form and browse for multidimensional arrays
  62. !file:c_abrows.ngo
  63.  
  64. !short:Box         window in screen primitive
  65. !file:c_box.ngo
  66.  
  67. !short:Browse      form and browse key-processing
  68. !file:c_browse.ngo
  69.  
  70. !short:Choice      choice of elements of an array, superset to Clipper Choice
  71. !file:c_choice.ngo
  72.  
  73. !short:Color       library used colors definition
  74. !file:c_color.ngo
  75.  
  76. !short:Cursor      screen cursor definition
  77. !file:c_cursor.ngo
  78.  
  79. !short:Dbf         compose of all used dbf files
  80. !file:c_dbf.ngo
  81.  
  82. !short:DBrowse     database browse and form
  83. !file:c_dbrows.ngo
  84.  
  85. !short:FInfo       view and print of a text file
  86. !file:c_finfo.ngo
  87.  
  88. !short:Frame       movable screen frame
  89. !file:c_frame.ngo
  90.  
  91. !short:Info        view and print of text from char. variable
  92. !file:c_info.ngo
  93.  
  94. !short:Loc         screen location
  95. !file:c_loc.ngo
  96.  
  97. !short:MD          help data structure for menu class
  98. !file:c_md.ngo
  99.  
  100. !short:Mask        view enhancement with user defined window content (say,get)
  101. !file:c_mask.ngo
  102.  
  103. !short:Menu        main menu of program definition
  104. !file:c_menu.ngo
  105.  
  106. !short:Mnu         choice of arrray fields, better control as in the Choice
  107. !file:c_mnu.ngo
  108.  
  109. !short:OneDbf      one database file services
  110. !file:c_onedbf.ngo
  111.  
  112. !short:Report      report to file generation
  113. !file:c_report.ngo
  114.  
  115. !short:Stack       stack as an object
  116. !file:c_stack.ngo
  117.  
  118. !short:Task        task switching window enhancement
  119. !file:c_task.ngo
  120.  
  121. !short:UpABrowse   as ABrowse, but supressed other window switching
  122. !file:c_upabro.ngo
  123.  
  124. !short:UpDBrowse   as DBrowse, but supressed other window switching
  125. !file:c_updbro.ngo
  126.  
  127. !short:UpWindow    as Window, but supressed other window switching
  128. !file:c_upwind.ngo
  129.  
  130. !short:View        complex database input-output
  131. !file:c_view.ngo
  132.  
  133. !short:Win         simple window with stored background
  134. !file:c_win.ngo
  135.  
  136. !short:Window      full window driving support
  137. !file:c_window.ngo
  138.  
  139. '
  140. '˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙ eof (c)JHK ˙˙˙˙˙˙˙˙˙˙˙˙˙˙˙
  141. '
  142.